home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / images / arachne.igz / arachne.img / LEVEL0 / LPPRD.CAB / Bin / tcpinfo.bat < prev   
DOS Batch File  |  2005-01-16  |  716b  |  37 lines

  1. @if "%debug%"=="" echo off
  2. if "%1"=="-?" goto _help
  3. if "%1"=="/?" goto _help
  4. if "%1"=="-h" goto _help
  5. if "%1"=="/h" goto _help
  6. if not exist %ramdrv%\bin\pprd.exe goto _nopprd
  7. if "%wattcp.cfg%"=="" goto _nowattcp
  8. if not exist %wattcp.cfg%\wattcp.cfg goto _nowattcp
  9.  
  10. if not exist %ramdrv%\bin\pktchk.com goto _npktchk
  11. %ramdrv%\bin\pktchk.com 0x20 0xff >nul
  12. if errorlevel 1 goto _nowattcp
  13. :_npktchk
  14.  
  15. %ramdrv%\bin\pprd.exe -x
  16. goto _end
  17.  
  18. :_help
  19. echo.
  20. echo TCPINFO: WATTCP TCPINFO implementation by 'PPRD.EXE -x'
  21. echo.
  22. goto _end
  23.  
  24. :_nopprd
  25. echo.
  26. echo TCPINFO: (ERROR) Missing 'PPRD.EXE'
  27. echo.
  28. goto _end
  29.  
  30. :_nowattcp
  31. echo.
  32. echo TCPINFO: (ERROR) Missing 'WATTCP.CFG'
  33. echo.
  34. goto _end
  35.  
  36. :_end
  37.